home *** CD-ROM | disk | FTP | other *** search
- /*
- =============================================================================
- Island Spirits Standard CSS
-
- Copyright (c) 1998 Island Spirits Software
- =============================================================================
- vN.N.NN dd-Mmm-yy XXX Initial, Bugfix, or Addition
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- v0.0.01 05-Aug-98 rjr Initial
- =============================================================================
- */
-
- /*
- Standard dark colors
- Green: rgb(0, 133, 77) or hex #00854d
- Blue: rgb(162, 200, 243) or hex #a2c8f3
-
- Standard light colors
- Green: rgb(204, 255, 204) or hex #ffccff
- Blue: rgb(232, 241, 252) or hex #e8f1fc
- */
-
-
- /* change the body to have a white background */
-
- BODY {
- background-image: url(bg.gif);
- background-color: rgb(204, 255, 204);
- color: black;
- font-size: 11pt;
- font-family: verdana, helvetica, sans-serif
- }
-
-
- /* first, let's use some real link colors */
-
- A:link {
- color: rgb(0, 133, 77);
- background-color: transparent;
- text-decoration: none
- }
-
- A:active {
- color: rgb(0, 133, 77);
- background-color: transparent;
- text-decoration: none
- }
-
- A:visited {
- color: rgb(0, 133, 77);
- background-color: transparent;
- text-decoration: none
- }
-
- A:hover {
- color: rgb(204, 255, 204);
- background-color: rgb(0, 133, 77);
- text-decoration: none
- }
-
- /* various headers */
- H1 {
- font-weight: bold;
- font-size: 15pt
- }
-
- H2 {
- font-weight: bold;
- font-size: 11pt
- }
-
- H3 {
- font-weight: bold;
- font-size: 10pt
- }
-
-
- /* table styles */
-
- TABLE {
- background: rgb(232, 241, 252);
- }
-
- TR.header {
- background-color: rgb(0, 133, 77);
- color: white;
- font-weight: bolder;
- font-size: 13pt
- }
-
-
- /* generic classes */
-
- .small {
- font-size: smaller
- }
-
- .sidebar {
- border-left: 2px red solid;
- padding-left: 4px
- }
-
- .notes {
- color: blue
- }
-
- .new {
- color: red
- }
-
- .deleted {
- text-decoration: line-through
- }
-
- .inline-head {
- font-weight: bolder;
- font-size: smaller;
- padding-right: 3em
- }
-
- .warning {
- background-color: #ff3333;
- font-size: smaller
- }
-
- .legalese {
- font-family: geneva, arial, sans-serif;
- font-size: 9pt
- }
-